From a3629592d303b4eea920b25746a13d194f08335c Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Mon, 9 Jan 2012 14:29:11 +0100 Subject: [PATCH] drop debian/ directory --- debian/README.debian | 18 ---- debian/build | 62 ------------- debian/changelog | 10 --- debian/control | 81 ----------------- debian/copyright | 8 -- debian/libgtk-cvs-dev.files | 9 -- debian/libgtk-cvs-dev.postinst | 5 -- debian/libgtk-cvs-dev.prerm | 6 -- debian/libgtk-cvs-doc.files | 8 -- debian/libgtk-cvs-doc.postinst | 11 --- debian/libgtk-cvs-doc.prerm | 7 -- debian/postinst | 7 -- debian/rules | 160 --------------------------------- 13 files changed, 392 deletions(-) delete mode 100644 debian/README.debian delete mode 100755 debian/build delete mode 100644 debian/changelog delete mode 100644 debian/control delete mode 100644 debian/copyright delete mode 100644 debian/libgtk-cvs-dev.files delete mode 100644 debian/libgtk-cvs-dev.postinst delete mode 100644 debian/libgtk-cvs-dev.prerm delete mode 100644 debian/libgtk-cvs-doc.files delete mode 100644 debian/libgtk-cvs-doc.postinst delete mode 100644 debian/libgtk-cvs-doc.prerm delete mode 100644 debian/postinst delete mode 100755 debian/rules diff --git a/debian/README.debian b/debian/README.debian deleted file mode 100644 index 120d66b526..0000000000 --- a/debian/README.debian +++ /dev/null @@ -1,18 +0,0 @@ -libgtk1 for Debian ----------------------- - -The GIMP Tool Kit (gtk) is a set of widgets to help you program -programs for the X Windowing System easily and powerfully. - -gtk is the moving force behind The GNU Image Manipulation Program (The -GIMP) -- the number one freely-available image editing and creation -program available. - -gtk is rapidly under development, and the source tree has officially -been separated from The GIMP now, as other teams of programmers -are beginning to write software using its great widget set -- like -GNOME, a desktop interface for X, and gzilla, a freely available -web browser for X. - -Ben Gertzfield , Mon, 29 Sep 1997 13:11:45 -0700 - diff --git a/debian/build b/debian/build deleted file mode 100755 index 1bd8a50e9d..0000000000 --- a/debian/build +++ /dev/null @@ -1,62 +0,0 @@ -#!/usr/bin/perl -w - - # Adjust debian/changelog and build a new - # Debian package of a CVS archive. - - # Written 17 November 1998 by Ben Gertzfield - # - - # This work is released under the GNU - # General Public License, version 2 or - # later. - -use strict; -use diagnostics; -use File::Copy; - -my $maintainer = 'Ben Gertzfield '; - -my @date = localtime; - -my $datestr = sprintf("%d%.2d%.2d", $date[5] + 1900, $date[4] + 1, $date[3]); -my $revision = '01'; - -open (CHANGELOG, 'debian/changelog') or die "Couldn't open debian/changelog: $!\n"; - -$_ = ; -chomp; - -close CHANGELOG; - -my ($package, $last_date, $last_revision) = /^(.*?) \((.*?)\.(.*)?\)/; - -if ($last_date eq $datestr) { - $revision = sprintf("%.2d", $last_revision + 1); -} - -my $new_version = "$datestr.$revision"; - -copy('debian/changelog', 'debian/changelog.old') or die "Couldn't copy debian/changelog to debian/changelog.old: $!\n"; - -open(NEWCHANGELOG, ">debian/changelog") or die "Couldn't open debian/changelog for writing: $!\n"; - -print NEWCHANGELOG "$package ($new_version) unstable; urgency=low\n\n * CVS snapshot build at " . scalar localtime() . "\n\n -- $maintainer " . `date -R` . "\n"; - -open(OLDCHANGELOG, "debian/changelog.old") or die "Couldn't open debian/changelog.old: $!\n"; - -while () { - print NEWCHANGELOG; -} - -close OLDCHANGELOG; -close NEWCHANGELOG; - -unlink('debian/changelog.old') or die "Couldn't unlink debian/changelog.old: $!\n"; - -open(NEWVERSION, '>debian/version') or die "Couldn't open debian/version for writing: $!\n"; -print NEWVERSION "$new_version\n"; -close NEWVERSION; - -system('dpkg-buildpackage -b -rfakeroot -us -uc'); -unlink 'debian/version' or die "Couldn't unlink debian/version: $!\n"; - diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index 65ac25e954..0000000000 --- a/debian/changelog +++ /dev/null @@ -1,10 +0,0 @@ -gtk+-cvs (19981116.01) unstable; urgency=low - - * First test build from CVS - - -- Ben Gertzfield Tue, 17 Nov 1998 12:02:13 -0800 - -Local variables: -mode: debian-changelog -add-log-mailing-address: "che@debian.org" -End: diff --git a/debian/control b/debian/control deleted file mode 100644 index 282901246a..0000000000 --- a/debian/control +++ /dev/null @@ -1,81 +0,0 @@ -Source: gtk+-cvs -Priority: extra -Section: libs -Maintainer: Ben Gertzfield -Standards-Version: 2.4.0.0 - -Package: libgtk-cvs-1.1 -Architecture: any -Section: libs -Depends: ${shlibs:Depends} -Conflicts: libgtk-dev (<< 1:1.0.2), libgtk1.1 -Description: CVS build of the GIMP Toolkit set of widgets for X - **THIS IS NOT AN OFFICIAL DEBIAN PACKAGE! THIS IS AN AUTOMATED CVS - BUILD OF THE GTK+ LIBRARIES! BEWARE! IT MAY NOT WORK!** - . - The GIMP Toolkit is a freely available set of widgets for X. - GTK is easy to use, and has been implemented in such projects as - The GNU Image Manipulation Program (The GIMP), GNOME, a GNU - desktop set of utilities for X, and gzilla, a GNU web-browser. - . - This is the unstable 1.1 branch of GTK. It is not intended for use - with stable projects! - -Package: libgtk-cvs-dev -Architecture: any -Section: devel -Depends: libgtk-cvs-1.1 (=${Source-Version}), libglib-cvs-dev -Suggests: libgtk-cvs-doc -Provides: libgtk1.1-dev -Replaces: libgtk1.1-dev -Conflicts: libgtk-dev, libgtk1 (<< 1:1.0.4), libgtk1.1-dev -Description: CVS build of development files for the GIMP Toolkit - **THIS IS NOT AN OFFICIAL DEBIAN PACKAGE! THIS IS AN AUTOMATED CVS - BUILD OF THE GTK+ LIBRARIES! BEWARE! IT MAY NOT WORK!** - . - This package contains the header files and static libraries for the - GIMP Toolkit set of widgets for X. - . - This is the unstable, 1.1 branch of GTK+. This is not intended for - use with stable releases of programs! - . - Install this package if you wish to develop your own X programs using - the GIMP Toolkit 1.1, or if you wish to compile your own plug-ins for - The GIMP. - -Package: libgtk-cvs-doc -Architecture: all -Section: doc -Conflicts: libgtk-dev (<< 1:0.99.4), libgtk-doc, libgtk1.1-doc -Description: CVS build of documentation for the GIMP Toolkit - **THIS IS NOT AN OFFICIAL DEBIAN PACKAGE! THIS IS AN AUTOMATED CVS - BUILD OF THE GTK+ LIBRARIES! BEWARE! IT MAY NOT WORK!** - . - This package contains lots of info-files, HTML docs, FAQs, and - other handy documentation about the GIMP Toolkit set of widgets - for X. - . - This package documents the unstable 1.1 release of the GIMP Toolkit. - . - Install this package if you want to have lots of info about the - GIMP toolkit when you're programming. - -Package: libgtk-cvs-dbg -Architecture: any -Section: devel -Depends: libgtk-cvs-1.1 (= ${Source-Version}), libgtk-cvs-dev (= ${Source-Version}) -Suggests: libgtk-cvs-doc -Conflicts: libgtk1.1-dbg -Description: CVS build of debugging files for the GIMP Toolkit - **THIS IS NOT AN OFFICIAL DEBIAN PACKAGE! THIS IS AN AUTOMATED CVS - BUILD OF THE GTK+ LIBRARIES! BEWARE! IT MAY NOT WORK!** - . - This package contains the debugging static libraries for the - GIMP Toolkit set of widgets for X. - . - This is the unstable, 1.1 branch of GTK+. This is not intended for - use with stable releases of programs! - . - Install this package if you wish to debug your own X programs using - the GIMP Toolkit 1.1, or if you wish to debug your own plug-ins for - The GIMP. diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index 719d441837..0000000000 --- a/debian/copyright +++ /dev/null @@ -1,8 +0,0 @@ -This package was debianized by Ben Gertzfield on -Tue, 17 Nov 1998 12:07:17 -0800 - -It was produced from the CVS repository at cvs.gimp.org. - -It may be redistributed under the terms of the GNU LGPL, Version 2 or -later, found on Debian systems in the file /usr/doc/copyright/LGPL. - diff --git a/debian/libgtk-cvs-dev.files b/debian/libgtk-cvs-dev.files deleted file mode 100644 index 7fa1c2fb62..0000000000 --- a/debian/libgtk-cvs-dev.files +++ /dev/null @@ -1,9 +0,0 @@ -usr/lib/libgdk.so -usr/lib/libgdk.a -usr/lib/libgtk.so -usr/lib/libgtk.a -usr/include/gdk/ -usr/include/gtk/ -usr/bin/gtk-config -usr/man/man1/gtk-config.1 -usr/share/aclocal/gtk.m4 diff --git a/debian/libgtk-cvs-dev.postinst b/debian/libgtk-cvs-dev.postinst deleted file mode 100644 index c1fc8b91f5..0000000000 --- a/debian/libgtk-cvs-dev.postinst +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -set -e - -#DEBHELPER# diff --git a/debian/libgtk-cvs-dev.prerm b/debian/libgtk-cvs-dev.prerm deleted file mode 100644 index 2772ad0aab..0000000000 --- a/debian/libgtk-cvs-dev.prerm +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -set -e -install-info --quiet --remove gtk - -#DEBHELPER# diff --git a/debian/libgtk-cvs-doc.files b/debian/libgtk-cvs-doc.files deleted file mode 100644 index 21b4cdff43..0000000000 --- a/debian/libgtk-cvs-doc.files +++ /dev/null @@ -1,8 +0,0 @@ -usr/info/gdk.info -usr/info/gtk.info -usr/info/gtk.info-1 -usr/info/gtk.info-2 -usr/info/gtk.info-3 -usr/info/gtk.info-4 -usr/info/gtk.info-5 - diff --git a/debian/libgtk-cvs-doc.postinst b/debian/libgtk-cvs-doc.postinst deleted file mode 100644 index ac01e50070..0000000000 --- a/debian/libgtk-cvs-doc.postinst +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - -set -e - -install-info --quiet --description="The GIMP Toolkit." \ - --section "The GIMP" "The GIMP" /usr/info/gtk.info.gz - -install-info --quiet --description="The GIMP Drawing Kit." \ - --section "The GIMP" "The GIMP" /usr/info/gdk.info.gz - -#DEBHELPER# diff --git a/debian/libgtk-cvs-doc.prerm b/debian/libgtk-cvs-doc.prerm deleted file mode 100644 index 9c80956737..0000000000 --- a/debian/libgtk-cvs-doc.prerm +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -set -e -install-info --quiet --remove gtk -install-info --quiet --remove gdk - -#DEBHELPER# diff --git a/debian/postinst b/debian/postinst deleted file mode 100644 index 0cd5f28c97..0000000000 --- a/debian/postinst +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -set -e - -ldconfig - -#DEBHELPER# diff --git a/debian/rules b/debian/rules deleted file mode 100755 index 28e4880d00..0000000000 --- a/debian/rules +++ /dev/null @@ -1,160 +0,0 @@ -#!/usr/bin/make -f - -# debian/rules file for gtk+ Debian package -# written April 1998 by Ben Gertzfield &2 'source and diff are obsolete - use dpkg-source -b'; false - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary -- 2.30.2